Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632707 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/181 - Three Number

preview.gif cody/swapnilsparsh/30DaysOfJavaScript/181 - Three Number/preview.gif
80 Views
0 Comments
Media file
style.css cody/swapnilsparsh/30DaysOfJavaScript/181 - Three Number/style.css
117 Views
0 Comments
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

*:focus {
outline: 0;
index.html cody/swapnilsparsh/30DaysOfJavaScript/181 - Three Number/index.html
305 Views
0 Comments
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Three Number Game</title>
<link rel="stylesheet" href="./style.css">

</head>
readme.md cody/swapnilsparsh/30DaysOfJavaScript/181 - Three Number/readme.md
174 Views
0 Comments
# Three Numeber

The Number Will Rotate. You Have To Click in the Number and Make all the Three number Same

![](./preview.gif)

script.js cody/swapnilsparsh/30DaysOfJavaScript/181 - Three Number/script.js
173 Views
0 Comments
$(document).ready(function() {

let speed = 1000;

let round = 1;
let win = false;
let numberOne;
let numberTwo;